5
תגובות
5 תשובות
ענה
משתמש_218762
ב
25 למאי 2012
#
הינה פונקציה שכתבתי:
function folder($path)
{
if($handle = opendir($path))
{
while (false !== ($file = readdir($handle)))
{
if($file != "." && $file != "..")
{
echo "<li>$file</li><br />";
if(is_dir($file))
{
if ($file != "." && $file != "..")
$scandir = scandir($file);
foreach($scandir as $value)
{
if($value !== "." & $value !== "..")
{
echo "-- ",$value,"<br />";
}
}
}
}
}
closedir($handle);
}
}
{
if($handle = opendir($path))
{
while (false !== ($file = readdir($handle)))
{
if($file != "." && $file != "..")
{
echo "<li>$file</li><br />";
if(is_dir($file))
{
if ($file != "." && $file != "..")
$scandir = scandir($file);
foreach($scandir as $value)
{
if($value !== "." & $value !== "..")
{
echo "-- ",$value,"<br />";
}
}
}
}
}
closedir($handle);
}
}
תהנה :)
ענה
משתמש_238974
ב
16 ליוני 2012
#